home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / MacPerl Source ƒ / Perl5 / t / op / stat.t < prev    next >
Encoding:
Text File  |  1995-10-31  |  6.0 KB  |  194 lines  |  [TEXT/MPS ]

  1. #!./perl
  2.  
  3. # $RCSfile: stat.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:28 $
  4.  
  5. print "1..56\n";
  6.  
  7. chdir 't' if -d 't';
  8. chdir '::' unless -d 'op';
  9.  
  10. chop($cwd = `pwd`);
  11.  
  12. $DEV = `ls -l /dev`;
  13.  
  14. unlink "Op.stat.tmp";
  15. open(FOO, ">Op.stat.tmp");
  16.  
  17. $junk = `ls Op.stat.tmp`;    # hack to make Apollo update link count
  18.  
  19. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  20.     $blksize,$blocks) = stat(FOO);
  21. if ($nlink == 1) {print "ok 1\n";} else {print "not ok 1\n";}
  22. if ($mtime && $mtime == $ctime) {print "ok 2\n";} else {print "not ok 2\n";}
  23.  
  24. print FOO "Now is the time for all good men to come to.\n";
  25. close(FOO);
  26.  
  27. sleep 2;
  28.  
  29. `rm -f Op.stat.tmp2; ln Op.stat.tmp Op.stat.tmp2; chmod 644 Op.stat.tmp`;
  30.  
  31. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  32.     $blksize,$blocks) = stat('Op.stat.tmp');
  33.  
  34. if ($nlink == 2) {print "ok 3\n";} else {print "not ok 3\n";}
  35. if (($mtime && $mtime != $ctime) || $cwd =~ m#/afs/#) {
  36.     print "ok 4\n";
  37. }
  38. else {
  39.     print "not ok 4\n";
  40. }
  41. print "#4    :$mtime: != :$ctime:\n";
  42.  
  43. `rm -f Op.stat.tmp`;
  44. `touch Op.stat.tmp`;
  45.  
  46. if (-z 'Op.stat.tmp') {print "ok 5\n";} else {print "not ok 5\n";}
  47. if (! -s 'Op.stat.tmp') {print "ok 6\n";} else {print "not ok 6\n";}
  48.  
  49. `echo hi >Op.stat.tmp`;
  50. if (! -z 'Op.stat.tmp') {print "ok 7\n";} else {print "not ok 7\n";}
  51. if (-s 'Op.stat.tmp') {print "ok 8\n";} else {print "not ok 8\n";}
  52.  
  53. unlink 'Op.stat.tmp';
  54. $olduid = $>;        # can't test -r if uid == 0
  55. `echo hi >Op.stat.tmp`;
  56. chmod 0,'Op.stat.tmp';
  57. eval '$> = 1;';        # so switch uid (may not be implemented)
  58. if (!$> || ! -r 'Op.stat.tmp') {print "ok 9\n";} else {print "not ok 9\n";}
  59. if (!$> || ! -w 'Op.stat.tmp') {print "ok 10\n";} else {print "not ok 10\n";}
  60. eval '$> = $olduid;';        # switch uid back (may not be implemented)
  61. print "# olduid=$olduid, newuid=$>\n" unless ($> == $olduid);
  62. if (! -x 'Op.stat.tmp') {print "ok 11\n";} else {print "not ok 11\n";}
  63.  
  64. foreach ((12,13,14,15,16,17)) {
  65.     print "ok $_\n";        #deleted tests
  66. }
  67.  
  68. chmod 0700,'Op.stat.tmp';
  69. if (-r 'Op.stat.tmp') {print "ok 18\n";} else {print "not ok 18\n";}
  70. if (-w 'Op.stat.tmp') {print "ok 19\n";} else {print "not ok 19\n";}
  71. if (-x 'Op.stat.tmp') {print "ok 20\n";} else {print "not ok 20\n";}
  72.  
  73. if (-f 'Op.stat.tmp') {print "ok 21\n";} else {print "not ok 21\n";}
  74. if (! -d 'Op.stat.tmp') {print "ok 22\n";} else {print "not ok 22\n";}
  75.  
  76. if (-d '.') {print "ok 23\n";} else {print "not ok 23\n";}
  77. if (! -f '.') {print "ok 24\n";} else {print "not ok 24\n";}
  78.  
  79. if (`ls -l perl` =~ /^l.*->/) {
  80.     if (-l 'perl') {print "ok 25\n";} else {print "not ok 25\n";}
  81. }
  82. else {
  83.     print "ok 25\n";
  84. }
  85.  
  86. if (-o 'Op.stat.tmp') {print "ok 26\n";} else {print "not ok 26\n";}
  87.  
  88. if (-e 'Op.stat.tmp') {print "ok 27\n";} else {print "not ok 27\n";}
  89. `rm -f Op.stat.tmp Op.stat.tmp2`;
  90. if (! -e 'Op.stat.tmp') {print "ok 28\n";} else {print "not ok 28\n";}
  91.  
  92. if ($DEV !~ /\nc.* (\S+)\n/)
  93.     {print "ok 29\n";}
  94. elsif (-c "/dev/$1")
  95.     {print "ok 29\n";}
  96. else
  97.     {print "not ok 29\n";}
  98. if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
  99.  
  100. if ($DEV !~ /\ns.* (\S+)\n/)
  101.     {print "ok 31\n";}
  102. elsif (-S "/dev/$1")
  103.     {print "ok 31\n";}
  104. else
  105.     {print "not ok 31\n";}
  106. if (! -S '.') {print "ok 32\n";} else {print "not ok 32\n";}
  107.  
  108. if ($DEV !~ /\nb.* (\S+)\n/)
  109.     {print "ok 33\n";}
  110. elsif (-b "/dev/$1")
  111.     {print "ok 33\n";}
  112. else
  113.     {print "not ok 33\n";}
  114. if (! -b '.') {print "ok 34\n";} else {print "not ok 34\n";}
  115.  
  116. $cnt = $uid = 0;
  117.  
  118. die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
  119. # chdir '/usr/bin' || die "Can't cd to /usr/bin";
  120. chdir 'op' || die "Can't cd to op";
  121. while (defined($_ = <*>)) {
  122.     $cnt++;
  123.     $uid++ if -u;
  124.     last if $uid && $uid < $cnt;
  125. }
  126. chdir $cwd || die "Can't cd back to $cwd";
  127.  
  128. # I suppose this is going to fail somewhere...
  129. if ($uid > 0 && $uid < $cnt)
  130.     {print "ok 35\n";}
  131. else
  132.     {print "not ok 35 ($uid $cnt)\n";}
  133.  
  134. # unless (open(tty,"/dev/tty")) {
  135. unless (open(tty,"Dev:Console")) {
  136.     print STDERR "Can't open /dev/tty--run t/TEST outside of make.\n";
  137. }
  138. if (-t tty) {print "ok 36\n";} else {print "not ok 36\n";}
  139. if (-c tty) {print "ok 37\n";} else {print "not ok 37\n";}
  140. close(tty);
  141. if (! -t tty) {print "ok 38\n";} else {print "not ok 38\n";}
  142. open(null,"/dev/null");
  143. if (! -t null || -e '/xenix') {print "ok 39\n";} else {print "not ok 39\n";}
  144. close(null);
  145. if (-t) {print "ok 40\n";} else {print "not ok 40\n";}
  146.  
  147. # These aren't strictly "stat" calls, but so what?
  148.  
  149. # if (-T 'op/stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
  150. # if (! -B 'op/stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
  151.  
  152. # if (-B './perl') {print "ok 43\n";} else {print "not ok 43\n";}
  153. # if (! -T './perl') {print "ok 44\n";} else {print "not ok 44\n";}
  154.  
  155. # open(FOO,'op/stat.t');
  156. if (-T ':op:stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
  157. if (! -B ':op:stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
  158.  
  159. if (-B '::perl') {print "ok 43\n";} else {print "not ok 43\n";}
  160. if (! -T '::perl') {print "ok 44\n";} else {print "not ok 44\n";}
  161.  
  162. open(FOO,':op:stat.t');
  163. eval { -T FOO; };
  164. if ($@ =~ /not implemented/) {
  165.     print "# $@";
  166.     for (45 .. 54) {
  167.     print "ok $_\n";
  168.     }
  169. }
  170. else {
  171.     if (-T FOO) {print "ok 45\n";} else {print "not ok 45\n";}
  172.     if (! -B FOO) {print "ok 46\n";} else {print "not ok 46\n";}
  173.     $_ = <FOO>;
  174.     if (/perl/) {print "ok 47\n";} else {print "not ok 47\n";}
  175.     if (-T FOO) {print "ok 48\n";} else {print "not ok 48\n";}
  176.     if (! -B FOO) {print "ok 49\n";} else {print "not ok 49\n";}
  177.     close(FOO);
  178.  
  179.     open(FOO,'op/stat.t');
  180.     $_ = <FOO>;
  181.     if (/perl/) {print "ok 50\n";} else {print "not ok 50\n";}
  182.     if (-T FOO) {print "ok 51\n";} else {print "not ok 51\n";}
  183.     if (! -B FOO) {print "ok 52\n";} else {print "not ok 52\n";}
  184.     seek(FOO,0,0);
  185.     if (-T FOO) {print "ok 53\n";} else {print "not ok 53\n";}
  186.     if (! -B FOO) {print "ok 54\n";} else {print "not ok 54\n";}
  187. }
  188. close(FOO);
  189.  
  190. # if (-T '/dev/null') {print "ok 55\n";} else {print "not ok 55\n";}
  191. # if (-B '/dev/null') {print "ok 56\n";} else {print "not ok 56\n";}
  192. if (-T 'Dev:null') {print "ok 55\n";} else {print "not ok 55\n";}
  193. if (-B 'Dev:null') {print "ok 56\n";} else {print "not ok 56\n";}
  194.